home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / dos / perror.c < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-15  |  113 b   |  9 lines

  1. #include <stdio.h>
  2. #include <errno.h>
  3.  
  4. void perror(const char *msg)
  5. {
  6.   printf("%s: error %s\n", msg, errno);
  7. }
  8.  
  9.